home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
23
/
6
/
DISK2368.ZIP
/
ANSWERS
/
CH01_2.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1990-07-20
|
193b
|
12 lines
// Chapter 1 - Programming exercise 2
#include "iostream.h"
main()
{
const index = 17;
volatile count;
count = index + 12;
index = count + 3;
}